From 25a431286740c97652ad2ff769e225ad96936fc3 Mon Sep 17 00:00:00 2001 From: Konrad Rzeszutek Wilk Date: Fri, 12 Aug 2016 22:15:04 -0400 Subject: [PATCH] x86/arm: Make 'make debug' work properly. When doing cross-compilation we should use proper $(OBJDUMP). Otherwise decompiling say ARM 32 code using x86 objdump won't help much. Acked-by: Jan Beulich Signed-off-by: Konrad Rzeszutek Wilk --- xen/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/Makefile b/xen/Makefile index 294fb9e25a..d68c84dccd 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -103,7 +103,7 @@ _uninstall: .PHONY: _debug _debug: - objdump -D -S $(TARGET)-syms > $(TARGET).s + $(OBJDUMP) -D -S $(TARGET)-syms > $(TARGET).s .PHONY: _clean _clean: delete-unfresh-files -- 2.30.2